home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 007a / int200.zip / INSTALL.BAT next >
DOS Batch File  |  1991-10-12  |  559b  |  31 lines

  1. @echo off
  2. if '%1' == '' goto specify
  3.  
  4. if '%1' == 'c' goto inst
  5. if '%1' == 'C' goto inst
  6. if '%1' == 'd' goto inst
  7. if '%1' == 'D' goto inst
  8. if '%1' == 'e' goto inst
  9. if '%1' == 'E' goto inst
  10. if '%1' == 'f' goto inst
  11. if '%1' == 'F' goto inst
  12. if '%1' == 'g' goto inst
  13. if '%1' == 'G' goto inst
  14. if '%1' == 'h' goto inst
  15. if '%1' == 'H' goto inst
  16.  
  17. :specify
  18. echo please specify hard drive to install on  (Example: install C)
  19. goto finish
  20.  
  21. :inst
  22.  
  23. a:
  24. md %1:\int
  25. copy a:*.int %1:\int
  26. copy a:*.exe %1:\int
  27. copy a:int.bat %1:\
  28. %1:
  29. cd \
  30.  
  31. :finish